home *** CD-ROM | disk | FTP | other *** search
/ MPC Internet Wizard / MPC Internet Wizard.iso / tutorial / ptwin / les5 / les5.cmd < prev   
Encoding:
Text File  |  1995-03-03  |  32.4 KB  |  1,336 lines

  1. init ;
  2.         winpos 0 0 ;
  3.         winsize 640 480 ;
  4.         config __development 0 ;
  5.         config __removeclear 0 ;
  6.         config __fullscreen 1 ;
  7.         config __tipespeed 15 ;
  8.         config clock 302 ;
  9.         config __lessontitle "Lesson 5 Menu" ;
  10. endinit ;
  11.  
  12. function "map1" ;
  13.         clearmapscreen ;
  14.         mapscreen 0 40 40 40 text2 14 440 "Click Here For Help" ;
  15.         mapscreen 40 40 40 40 text2 14 440 "Read Electronic Mail" ;
  16.         mapscreen 80 40 40 40 text2 14 440 "Send Electronic Mail" ;
  17.         mapscreen 120 40 40 40 text2 14 440 "Browse the World Wide Web - Global Hypertext Information" ;
  18.         mapscreen 160 40 40 40 text2 14 440 "Browse Gopher - Global Information Menus" ;
  19.         mapscreen 200 40 40 40 text2 14 440 "Read Netnews Newsgroups" ;
  20.         mapscreen 240 40 40 40 text2 14 440 "Post to Netnews Newsgroups" ;
  21.         mapscreen 280 40 40 40 text2 14 440 "FTP File Transfer" ;
  22.         mapscreen 320 40 40 40 text2 14 440 "Telnet - Log Into Remote Computers" ;
  23.         mapscreen 360 40 40 40 text2 14 440 "Finger - Look Up User Information On Internet Systems" ;
  24.         mapscreen 400 40 40 40 text2 14 440 "IRC - Chat With Internet Users All Over The World" ;
  25.         enablescreenmap ;
  26. endfunction ;
  27.  
  28. function "mapftp" ;
  29.         mapscreen 8 80 37 37 text2 14 440 "View a text or graphics file from the remote computer." ;
  30.         mapscreen 46 80 37 37 text2 14 440 "Download a file from the remote computer." ;
  31.         mapscreen 84 80 37 37 text2 14 440 "Upload a file to the remote computer." ;
  32.         mapscreen 518 80 37 37 text2 14 440 "Delete a file on the remote computer." ;
  33.         mapscreen 556 80 37 37 text2 14 440 "Create a subdirectory on the remote computer." ;
  34.         mapscreen 592 80 37 37 text2 14 440 "Remove a subdirectory on the remote computer." ;
  35.         enablescreenmap ;
  36. endfunction ;
  37.  
  38. function "maparch" ;
  39.         mapscreen 9 83 31 31 text2 14 440 "Open local file." ;
  40.         mapscreen 41 83 31 31 text2 14 440 "Save current document to disk." ;
  41.         mapscreen 73 83 31 31 text2 14 440 "Open the book mark file." ;
  42.         mapscreen 105 83 31 31 text2 14 440 "Search word(s) in the current document." ;
  43.         mapscreen 504 83 31 31 text2 14 440 "Go to the home page." ;
  44.         mapscreen 536 83 31 31 text2 14 440 "Go to previous document." ;
  45.         mapscreen 568 83 31 31 text2 14 440 "Go to next document." ;
  46.         enablescreenmap ;
  47. endfunction ;
  48.  
  49. function "mapgoph" ;
  50.         mapscreen 9 83 31 31 text2 14 440 "Save the current document to disk." ;
  51.         mapscreen 41 83 31 31 text2 14 440 "Open the book mark file." ;
  52.         mapscreen 73 83 31 31 text2 14 440 "Search word(s) in the current document." ;
  53.         mapscreen 536 83 31 31 text2 14 440 "Go to the home page." ;
  54.         mapscreen 568 83 31 31 text2 14 440 "Go to previous document." ;
  55.         enablescreenmap ;
  56. endfunction ;
  57.  
  58. function "movecursor" ;
  59.         if = __silentmode 1 ;
  60.         setcursor a_xdest a_ydest ;
  61.         goto "movedone" ;
  62.         endif ;
  63.         getcursor ;
  64.         config l_xpos __curxpos ;
  65.         config l_ypos __curypos ;
  66.         config l_xmove 1 ;
  67.         config l_ymove 1 ;
  68.         label "movenotdone" ;
  69.         if < l_xpos a_xdest ;
  70.         config l_xpos + l_xpos l_xmove ;
  71.         endif ;
  72.         if < l_ypos a_ydest ;
  73.         config l_ypos + l_ypos l_ymove ;
  74.         endif ;
  75.         if > l_xpos a_xdest ;
  76.         config l_xpos - l_xpos l_xmove ;
  77.         endif ;
  78.         if > l_ypos a_ydest ;
  79.         config l_ypos - l_ypos l_ymove ;
  80.         endif ;
  81.         setcursor l_xpos l_ypos ;
  82.         sleep 1 ;
  83.         if and = l_xpos a_xdest = l_ypos a_ydest ;
  84.         goto "movedone" ;
  85.         endif ;
  86.         goto "movenotdone" ;
  87.         label "movedone" ;
  88. endfunction ;
  89.  
  90. segment "main" 0 ;
  91.     chainseg "seg_00" ;
  92. endseg ;
  93.  
  94. segment "seg_00" 1 ;
  95.         menuitem "Lesson Introduction" ;
  96.         startimg "tr.pcf" 0 0 ;
  97.         config __textcolor darkcyan ;
  98.         text "tx0a" 240 39 390 23 "~f05Lesson 5:  Finding and Getting Information" ;
  99.         config __textcolor darkred ;
  100.         text "tx0" 337 69 120 33 "~f27Welcome" ;
  101.         config __textcolor medblue ;
  102.         text "tx1" 307 140 177 23 "~f26In this lesson you will:" ;
  103.         startbullet 219 180 350 250 ;
  104.         bullet "b1" 1 0 "Learn the most popular ways to retrieve data from the Net" ;
  105.         bullet "b2" 1 9 "Use \"FTP\" to retrieve files" ;
  106.         bullet "b3" 1 15 "Find files using \"Archie\"" ;
  107.         bullet "b4" 1 21 "Explore \"Gopher\" sites" ;
  108.         bullet "b5" 1 27 "Search for topics in Gopher sites using \"Veronica\"" ;
  109.         startavi "l5s.avi" "jnk1.vcw" 15 78 ;
  110.         status "Click to continue..." ;
  111.         anykeymouse 17 ;
  112.         status ;
  113.         clrscr ;
  114.         endimg ;
  115.         endavi ;
  116.     chainseg "seg_01" ;
  117. endseg ;
  118.  
  119. segment "seg_01" 1 ;
  120.         menuitem "Ways to Retrieve Information" ;
  121.         startimg "blackbd.pcf" 0 0 ;
  122.         config __textcolor darkcyan ;
  123.         text "tx0" 218 77 229 27 "~f26Ways to Retrieve Information" ;
  124.         startaud "net_5_1.wav" "net_5_1.vcw" 0 ;
  125.     frame ;
  126.         startbullet 80 110 450 270 ;
  127.         config __bullettextcolor white ;
  128.         bullet "b1" 1 0 "Email and mailing lists" ;
  129.         bullet "b2" 1 4 "Newsgroups" ;
  130.     frame ;
  131.         bullet "b3" 1 8 "FTP:  Send and retrieve files across the Internet." ;
  132.     frame ;
  133.         bullet "b4" 1 12 "Gopher Sites:  Find and retrieve files." ;
  134.     frame ;
  135.         bullet "b5" 1 16 "World Web Sites:  (Next lesson)" ;
  136.     frame ;
  137.         pauseaud ;
  138.         menuitem "What is FTP?" ;
  139.         status "Click to continue..." ;
  140.         anykeymouse 17 ;
  141.         status ;
  142.         clrscr ;
  143.         text "tx0" 218 77 229 27 "~f26FTP:  File Transfer Protocol" ;
  144.         startbullet 80 107 450 270 ;
  145.         resumeaud ;
  146.     frame ;
  147.         bullet "b1" 1 0 "FTP is a service that lets you transfer files among computers attached to the Internet." ;
  148.     frame ;
  149.         bullet "b8" 1 7 "FTP is often used to download (retrieve) files that are stored on FTP Sites." ;
  150.     frame ;
  151.         bullet "b9" 1 14 "An FTP Site is any computer that allows FTP file transfers." ;
  152.     frame ;
  153.         bullet "b10" 1 18 "To transfer files using FTP, you must first:" ;
  154.         bullet "b10a" 2 21 "Log into the FTP site." ;
  155.     frame ;
  156.         bullet "b10c" 2 24 "Enter login name and password." ;
  157.     frame ;
  158.         bullet "b11" 2 27 "Most FTP sites let you use the login name \"anonymous\" and any password." ;
  159.     frame ;
  160.         bullet "b13" 1 34 "A disadvantage of using FTP is that you need to know the network address of the site, and usually the names of the directories containing the files." ;
  161.     frame ;
  162.         pauseaud ;
  163.         status "Click to continue..." ;
  164.         anykeymouse 17 ;
  165.         status ;
  166.         clrscr ;
  167.         endimg ;
  168.         endaud ;
  169.     chainseg "seg_02" ;
  170. endseg ;
  171.  
  172. segment "seg_02" 1 ;
  173.         menuitem "Using FTP to Transfer Files" ;
  174.         startimg "l5_seg2a.pcf" 0 0 ;
  175.         call "map1" ;
  176.         startaud "net_5_2.wav" "net_5_2.vcw" 0 ;
  177.     frame ;
  178.         config __arrowcolor darkgreen ;
  179.         arrow "a1" 301 81 1 ;
  180.     frame ;
  181.         pauseaud ;
  182.         status "Click the \"FTP File Transfer\" button." ;
  183.         imouse 1 280 40 40 38 ;
  184.         status ;
  185.         clrscr ;
  186.         nextimg ;
  187.         showcaret 73 112 ;
  188.         resumeaud ;
  189.     frame ;
  190.         arrow "a3" 204 138 8 ;
  191.     frame ;
  192.         remove "a3" ;
  193.     frame ;
  194.         pauseaud ;
  195.         status "Please wait..." ;
  196.         config __ikeyfont 31 ;
  197.         sleep 1 ;
  198.         tipe "tp5" 73 111 191 20 "ftp.cica.indiana.edu" ;
  199.         status ;
  200.         resumeaud ;
  201.     frame ;
  202.         pauseaud ;
  203.         status "Click the \"OK\" button." ;
  204.         imouse 1 557 106 60 21 ;
  205.         status ;
  206.         clrscr ;
  207.         nextimg ;
  208.         hidecaret ;
  209.         resumeaud ;
  210.     frame ;
  211.         pauseaud ;
  212.         status "Click the \"OK\" button." ;
  213.         imouse 1 415 201 63 22 ;
  214.         status ;
  215.         nextimg ;
  216.         resumeaud ;
  217.     frame ;
  218.         pauseaud ;
  219.         status "Please wait..." ;
  220.         nextimg ;
  221.         sleep 100 ;
  222.         nextimg ;
  223.         status ;
  224.         resumeaud ;
  225.     frame ;
  226.         config __arrowcolor darkred ;
  227.         arrow "a9" 420 157 4 ;
  228.     frame ;
  229.         pauseaud ;
  230.         remove "a9" ;
  231.         status "Click the \"OK\" button." ;
  232.         imouse 1 301 335 56 25 ;
  233.         status ;
  234.         endimg ;
  235.         startimg "l5_seg2b.pcf" 0 0 ;
  236.         resumeaud ;
  237.     frame ;
  238.         pauseaud ;
  239.         status "Click the \"FTP File Transfer\" button." ;
  240.         imouse 1 280 40 40 38 ;
  241.         status ;
  242.         clrscr ;
  243.         nextimg ;
  244.         showcaret 73 112 ;
  245.         resumeaud ;
  246.     frame ;
  247.         pauseaud ;
  248.         status "Please wait..." ;
  249.         sleep 1 ;
  250.         tipe "tp5" 73 111 191 20 "gatekeeper.dec.com" ;
  251.         status ;
  252.         resumeaud ;
  253.     frame ;
  254.         pauseaud ;
  255.         status "Click the \"OK\" button." ;
  256.         imouse 1 557 106 60 21 ;
  257.         clrscr ;
  258.         nextimg ;
  259.         hidecaret ;
  260.         imouse 1 415 201 63 22 ;
  261.         status "Please wait..." ;
  262.         nextimg ;
  263.         sleep 100 ;
  264.         nextimg ;
  265.         status ;
  266.         resumeaud ;
  267.     frame ;
  268.         pauseaud ;
  269.         status "Double-click the Message window's Control-menu box." ;
  270.         arrow "a14" 108 201 2 ;
  271.         imouse 4 114 193 18 19 ;
  272.         status ;
  273.         remove "a14" ;
  274.         nextimg ;
  275.         resumeaud ;
  276.     frame ;
  277.         pauseaud ;
  278.         status "Please wait..." ;
  279.         config a_xdest 199 ;
  280.         config a_ydest 137 ;
  281.         call "movecursor" ;
  282.         showcaret 199 132 ;
  283.         setcursor 211 156 ;
  284.         sleep 1 ;
  285.         tipe "tp15" 199 131 225 20 "pub/micro/msdos/win3" ;
  286.         status ;
  287.         resumeaud ;
  288.     frame ;
  289.         pauseaud ;
  290.         status "Press <Enter>." ;
  291.         ikey return ;
  292.         status "Please wait..." ;
  293.         hidecaret ;
  294.         clrscr ;
  295.         nextimg ;
  296.         sleep 100 ;
  297.         nextimg ;
  298.         status ;
  299.         resumeaud ;
  300.     frame ;
  301.         pauseaud ;
  302.         status "Click the maximize button in the FTP window." ;
  303.         imouse 1 559 97 28 26 ;
  304.         status ;
  305.         nextimg ;
  306.         call "mapftp" ;
  307.         resumeaud ;
  308.     frame ;
  309.         config __textcolor darkred ;
  310.         text "tx18" 468 163 98 26 "Directories" ;
  311.     frame ;
  312.         arrow "a19" 260 96 4 ;
  313.     frame ;
  314.         text "tx20" 468 264 93 29 "Files" ;
  315.     frame ;
  316.         clrscr ;
  317.         arrow "a21" 425 337 4 ;
  318.     frame ;
  319.         box "bx22" 241 330 45 14 ;
  320.     frame ;
  321.         remove "bx22" ;
  322.         arrow "a23" 27 122 1 ;
  323.     frame ;
  324.         pauseaud ;
  325.         remove "a23" ;
  326.         status "Click anywhere on the \"README\" file." ;
  327.         imouse 1 0 330 618 16 ;
  328.         remove "a22" ;
  329.         nextimg ;
  330.         arrow "a23" 27 122 1 ;
  331.         status "Click the \"View...\" button." ;
  332.         imouse 1 9 79 36 37 ;
  333.         status ;
  334.         clrscr ;
  335.         nextimg ;
  336.         disablescreenmap ;
  337.         resumeaud ;
  338.     frame ;
  339.         pauseaud ;
  340.         status "Click the \"ASCII Text\" button." ;
  341.         imouse 1 408 153 79 24 ;
  342.         status ;
  343.         nextimg ;
  344.         showcaret 115 106 ;
  345.         resumeaud ;
  346.     frame ;
  347.         pauseaud ;
  348.         status "Click the \"OK\" button." ;
  349.         imouse 1 425 87 86 21 ;
  350.         status ;
  351.         hidecaret ;
  352.         nextimg ;
  353.         enablescreenmap ;
  354.         resumeaud ;
  355.     frame ;
  356.         arrow "a28" 575 424 2 ;
  357.     frame ;
  358.         status "Please wait..." ;
  359.         endimg ;
  360.         endaud ;
  361.     chainseg "seg_2b" ;
  362. endseg ;
  363.  
  364. segment "seg_2b" 1 ;
  365.         status "Please wait..." ;
  366.         arrow "a0" 575 424 2 ;
  367.         hourglass 1 ;
  368.         startimg "l5_seg2b.pcf" 0 0 ;
  369.         nextimg ;
  370.         nextimg ;
  371.         nextimg ;
  372.         nextimg ;
  373.         nextimg ;
  374.         nextimg ;
  375.         nextimg ;
  376.         nextimg ;
  377.         nextimg ;
  378.         nextimg ;
  379.         nextimg ;
  380.         nextimg ;
  381.         nextimg ;
  382.         sleep 100 ;
  383.         config __textmode opaque ;
  384.         config __textfont 31 ;
  385.         config __textcolor black ;
  386.         config __textbkcolor white ;
  387.         text "tx29" 602 418 38 16 "8256" ;
  388.         sleep 100 ;
  389.         remove "tx29" ;
  390.         nextimg ;
  391.         sleep 100 ;
  392.         text "tx29" 597 418 38 16 "12444" ;
  393.         sleep 100 ;
  394.         remove "tx29" ;
  395.         text "tx29" 597 418 38 16 "16826" ;
  396.         sleep 100 ;
  397.         clrscr ;
  398.         nextimg ;
  399.         config __caretwidth 2 ;
  400.         showcaret 75 161 ;
  401.         status ;
  402.         hourglass 0 ;
  403.         startaud "net_5_2b.wav" "net_5_2b.vcw" 0 ;
  404.     frame ;
  405.         pauseaud ;
  406.         status "Press the <PgDn> key." ;
  407.         ikey pgdn ;
  408.         nextimg ;
  409.         status "Read this over.  Then press <PgDn> again." ;
  410.         ikey pgdn ;
  411.         nextimg ;
  412.         status ;
  413.         resumeaud ;
  414.     frame ;
  415.         pauseaud ;
  416.         status "Double-click the View window's Control-menu box." ;
  417.         imouse 4 58 138 19 19 ;
  418.         status ;
  419.         hidecaret ;
  420.         nextimg ;
  421.         resumeaud ;
  422.     frame ;
  423.         pauseaud ;
  424.         status "Click the maximize button in the FTP window." ;
  425.         imouse 1 559 98 24 24 ;
  426.         status ;
  427.         nextimg ;
  428.         call "map1" ;
  429.         call "mapftp" ;
  430.         resumeaud ;
  431.     frame ;
  432.         arrow "a33" 418 272 4 ;
  433.         arrow "a33a" 446 287 4 ;
  434.     frame ;
  435.         remove "a33" ;
  436.     frame ;
  437.         pauseaud ;
  438.         status "Double-click anywhere on the \"INDEX.ZIP\" file." ;
  439.         imouse 4 0 280 621 20 ;
  440.         status ;
  441.         clrscr ;
  442.         nextimg ;
  443.         disablescreenmap ;
  444.         resumeaud ;
  445.     frame ;
  446.         pauseaud ;
  447.         status "Click the \"Binary File\" button." ;
  448.         imouse 1 409 122 77 23 ;
  449.         status ;
  450.         nextimg ;
  451.         showcaret 124 106 ;
  452.         resumeaud ;
  453.     frame ;
  454.         pauseaud ;
  455.         status "Click the \"Cancel\" button." ;
  456.         imouse 1 425 117 86 21 ;
  457.         status ;
  458.         hidecaret ;
  459.         nextimg ;
  460.         enablescreenmap ;
  461.         resumeaud ;
  462.     frame ;
  463.         pauseaud ;
  464.         arrow "a38" 618 168 2 ;
  465.         status "Click the Scroll Bar." ;
  466.         imouse 1 623 152 16 56 ;
  467.         status ;
  468.         clrscr ;
  469.         nextimg ;
  470.         resumeaud ;
  471.     frame ;
  472.         arrow "a39" 417 144 4 ;
  473.     frame ;
  474.         pauseaud ;
  475.         status "Double-click anywhere on the \"games\" directory." ;
  476.         imouse 4 0 135 622 19 ;
  477.         status ;
  478.         clrscr ;
  479.         nextimg ;
  480.         resumeaud ;
  481.     frame ;
  482.         arrow "a41" 420 337 4 ;
  483.     frame ;
  484.         pauseaud ;
  485.         status "Click anywhere on the \"INDEX\" file." ;
  486.         imouse 1 0 326 622 22 ;
  487.         clrscr ;
  488.         nextimg ;
  489.         status "Click the \"View...\" button." ;
  490.         imouse 1 9 79 36 37 ;
  491.         clrscr ;
  492.         nextimg ;
  493.         disablescreenmap ;
  494.         status "Click the \"ASCII Text\" button." ;
  495.         imouse 1 408 153 79 24 ;
  496.         nextimg ;
  497.         config __caretwidth 1 ;
  498.         showcaret 105 106 ;
  499.         status "Click the \"OK\" button." ;
  500.         imouse 1 425 87 86 21 ;
  501.         status ;
  502.         nextimg ;
  503.         resumeaud ;
  504.     frame ;
  505.         pauseaud ;
  506.         status "Please wait..." ;
  507.         hourglass 1 ;
  508.         nextimg ;
  509.         sleep 100 ;
  510.         nextimg ;
  511.         config __textmode opaque ;
  512.         config __textfont 31 ;
  513.         config __textcolor black ;
  514.         config __textbkcolor white ;
  515.         text "tx29" 602 418 38 16 "8256" ;
  516.         sleep 100 ;
  517.         remove "tx29" ;
  518.         sleep 100 ;
  519.         text "tx29" 597 418 38 16 "12444" ;
  520.         sleep 100 ;
  521.         remove "tx29" ;
  522.         text "tx29" 597 418 38 16 "16826" ;
  523.         sleep 100 ;
  524.         clrscr ;
  525.         nextimg ;
  526.         config __caretwidth 2 ;
  527.         showcaret 75 161 ;
  528.         status ;
  529.         hourglass 0 ;
  530.         resumeaud ;
  531.     frame ;
  532.         pauseaud ;
  533.         status "Press the <PgDn> key." ;
  534.         ikey pgdn ;
  535.         status ;
  536.         nextimg ;
  537.         resumeaud ;
  538.     frame ;
  539.         pauseaud ;
  540.         status "Press the <PgDn> key." ;
  541.         ikey pgdn ;
  542.         nextimg ;
  543.         status "Press the <PgDn> key again." ;
  544.         ikey pgdn ;
  545.         nextimg ;
  546.         ikey pgdn ;
  547.         nextimg ;
  548.         ikey pgdn ;
  549.         nextimg ;
  550.         ikey pgdn ;
  551.         nextimg ;
  552.         status ;
  553.         resumeaud ;
  554.     frame ;
  555.         arrow "a46" 61 195 2 ;
  556.     frame ;
  557.         remove "a46" ;
  558.         arrow "a47" 51 145 2 ;
  559.     frame ;
  560.         pauseaud ;
  561.         status "Double-click the View window's Control-menu box." ;
  562.         imouse 4 56 134 20 23 ;
  563.         status ;
  564.         clrscr ;
  565.         nextimg ;
  566.         hidecaret ;
  567.         resumeaud ;
  568.     frame ;
  569.         pauseaud ;
  570.         status "Click the maximize button in the FTP window." ;
  571.         imouse 1 559 98 27 26 ;
  572.         status ;
  573.         nextimg ;
  574.         enablescreenmap ;
  575.         resumeaud ;
  576.     frame ;
  577.         pauseaud ;
  578.         arrow "a50" 618 307 2 ;
  579.         status "Click the Scroll Bar." ;
  580.         imouse 1 623 265 16 126 ;
  581.         nextimg ;
  582.         status "Click the Scroll Bar again." ;
  583.         imouse 1 622 269 16 121 ;
  584.         nextimg ;
  585.         imouse 1 624 273 14 118 ;
  586.         nextimg ;
  587.         imouse 1 623 277 16 114 ;
  588.         nextimg ;
  589.         imouse 1 623 282 15 109 ;
  590.         nextimg ;
  591.         clrscr ;
  592.         status ;
  593.         resumeaud ;
  594.     frame ;
  595.         arrow "a51" 467 369 4 ;
  596.     frame ;
  597.         remove "a51" ;
  598.     frame ;
  599.         pauseaud ;
  600.         status "Double-click the smaller Control-menu box." ;
  601.         box "bx17" 0 18 18 20 ;
  602.         arrow "a17" 22 26 4 ;
  603.         imouse 4 0 18 18 20 ;
  604.         status ;
  605.         clrscr ;
  606.         endimg ;
  607.         endaud ;
  608.     chainseg "seg_03" ;
  609. endseg ;
  610.  
  611. segment "seg_03" 1 ;
  612.         menuitem "Using Archie to Find Files" ;
  613.         startimg "l5_seg3.pcf" 0 0 ;
  614.         call "map1" ;
  615.         startaud "net_5_3.wav" "net_5_3.vcw" 0 ;
  616.     frame ;
  617.         textbox "tb1" 211 120 219 37 "ARCHIE can help you find files." ;
  618.     frame ;
  619.         textbox "tb2" 177 176 287 54 "ARCHIE periodically downloads the file names available on anonymous FTP sites." ;
  620.     frame ;
  621.         textbox "tb3" 192 249 257 56 "Then it merges the file names into one database, which you can search." ;
  622.     frame ;
  623.         pauseaud ;
  624.         status "Click to continue..." ;
  625.         anykeymouse 17 ;
  626.         status ;
  627.         clrscr ;
  628.         resumeaud ;
  629.     frame ;
  630.         arrow "a5" 140 81 1 ;
  631.     frame ;
  632.         pauseaud ;
  633.         status "Click the \"Browse the World Wide Web\" button." ;
  634.         imouse 1 120 39 39 39 ;
  635.         status ;
  636.         clrscr ;
  637.         nextimg ;
  638.         resumeaud ;
  639.     frame ;
  640.         config __arrowcolor darkgreen ;
  641.         arrow "a7" 305 161 1 ;
  642.     frame ;
  643.         pauseaud ;
  644.         status "Double-click anywhere inside the input box." ;
  645.         imouse 4 204 139 208 19 ;
  646.         status ;
  647.         clrscr ;
  648.         nextimg ;
  649.         showcaret 406 141 ;
  650.         resumeaud ;
  651.     frame ;
  652.         pauseaud ;
  653.         status "Please wait..." ;
  654.         nextimg ;
  655.         showcaret 214 141 ;
  656.         sleep 1 ;
  657.         config __textfont 31 ;
  658.         tipe "tp9" 215 140 195 20 "ttp://www.csi.nb.ca/archgate.html" ;
  659.         status ;
  660.         resumeaud ;
  661.     frame ;
  662.         pauseaud ;
  663.         status "Press <Enter>." ;
  664.         ikey return ;
  665.         status ;
  666.         clrscr ;
  667.         nextimg ;
  668.         hidecaret ;
  669.         resumeaud ;
  670.     frame ;
  671.         pauseaud ;
  672.         status "Click the maximize button in the Archie window." ;
  673.         imouse 1 559 105 27 24 ;
  674.         status ;
  675.         nextimg ;
  676.         call "maparch" ;
  677.         resumeaud ;
  678.     frame ;
  679.         config __arrowcolor darkred ;
  680.         arrow "a12" 410 391 4 ;
  681.     frame ;
  682.         pauseaud ;
  683.         status "Click anywhere inside the search box." ;
  684.         imouse 1 238 381 167 23 ;
  685.         clrscr ;
  686.         nextimg ;
  687.         config __caretwidth 2 ;
  688.         showcaret 240 384 ;
  689.         config __ikeyfont 31 ;
  690.         status "Type \"chess\"." ;
  691.         istring 3 "is14" 241 383 108 17 "chess" ;
  692.         status ;
  693.         resumeaud ;
  694.     frame ;
  695.         pauseaud ;
  696.         arrow "a15" 615 179 2 ;
  697.         status "Click the Scroll Bar." ;
  698.         imouse 1 623 154 16 243 ;
  699.         status ;
  700.         clrscr ;
  701.         hidecaret ;
  702.         nextimg ;
  703.         resumeaud ;
  704.     frame ;
  705.         arrow "a16" 519 141 4 ;
  706.     frame ;
  707.         remove "a16" ;
  708.     frame ;
  709.         arrow "a17" 314 342 4 ;
  710.     frame ;
  711.         pauseaud ;
  712.         status "Click the \"Submit\" button." ;
  713.         imouse 1 246 330 63 23 ;
  714.         status ;
  715.         clrscr ;
  716.         nextimg ;
  717.         resumeaud ;
  718.     frame ;
  719.         nextimg ;
  720.     frame ;
  721.         pauseaud ;
  722.         status "Read over the page and then press the <PgDn> key." ;
  723.         ikey pgdn ;
  724.         status ;
  725.         nextimg ;
  726.         resumeaud ;
  727.     frame ;
  728.         arrow "a20" 276 326 4 ;
  729.     frame ;
  730.         arrow "a21" 191 191 4 ;
  731.         textbox "tb21" 370 245 226 70 "The safest way to get this file is to FTP to the host site, and then download the file." ;
  732.     frame ;
  733.         textbox "tb22" 341 327 255 53 "Archie just searches file NAMES, not descriptions of what is in the file." ;
  734.     frame ;
  735.         pauseaud ;
  736.         status "Click to continue..." ;
  737.         anykeymouse 17 ;
  738.         status ;
  739.         clrscr ;
  740.         resumeaud ;
  741.     frame ;
  742.         box "bx17" 0 18 18 20 ;
  743.         arrow "a17" 22 26 4 ;
  744.     frame ;
  745.         pauseaud ;
  746.         status "Double-click the smaller Control-menu box." ;
  747.         imouse 4 0 18 18 20 ;
  748.         status ;
  749.         clrscr ;
  750.         endimg ;
  751.         endaud ;
  752.     chainseg "seg_04" ;
  753. endseg ;
  754.  
  755. segment "seg_04" 1 ;
  756.         menuitem "Finding Information by Visiting Gopher Sites" ;
  757.         startimg "l5_seg4.pcf" 0 0 ;
  758.         call "map1" ;
  759.         startaud "net_5_4.wav" "net_5_4.vcw" 0 ;
  760.     frame ;
  761.         textbox "tb1" 186 99 268 69 "Gopher is similar to FTP:  You connect to a Gopher site and then search the site for interesting items." ;
  762.     frame ;
  763.         textbox "tb2" 143 189 355 54 "However, Gopher is easier to use because you can search for TOPICS instead of file names." ;
  764.     frame ;
  765.         textbox "tb3" 143 262 355 37 "There are over ~c015000 ~c00Gopher Sites = ~c01Gopher Space" ;
  766.     frame ;
  767.         pauseaud ;
  768.         status "Click to continue..." ;
  769.         anykeymouse 17 ;
  770.         status ;
  771.         clrscr ;
  772.         resumeaud ;
  773.     frame ;
  774.         config __arrowcolor darkgreen ;
  775.         arrow "a5" 180 79 1 ;
  776.     frame ;
  777.         pauseaud ;
  778.         status "Click the \"Browse Gopher...\" button." ;
  779.         imouse 1 160 39 40 39 ;
  780.         status ;
  781.         clrscr ;
  782.         nextimg ;
  783.         showcaret 72 111 ;
  784.         resumeaud ;
  785.     frame ;
  786.         pauseaud ;
  787.         config __arrowcolor darkred ;
  788.         arrow "a7" 45 350 5 ;
  789.         status "Click anywhere in California." ;
  790.         imouse 1 22 226 68 149 ;
  791.         status ;
  792.         clrscr ;
  793.         hidecaret ;
  794.         nextimg ;
  795.         resumeaud ;
  796.     frame ;
  797.         config __arrowcolor darkgreen ;
  798.         arrow "a8" 282 129 1 ;
  799.     frame ;
  800.         pauseaud ;
  801.         status "Click the drop-down arrow." ;
  802.         imouse 1 276 109 15 19 ;
  803.         status ;
  804.         clrscr ;
  805.         nextimg ;
  806.         showcaret 213 112 ;
  807.         resumeaud ;
  808.     frame ;
  809.         pauseaud ;
  810.         status "Click the <PgDn> key." ;
  811.         ikey pgdn ;
  812.         nextimg ;
  813.         showcaret 154 112 ;
  814.         status "Click the <PgDn> key again." ;
  815.         ikey pgdn ;
  816.         nextimg ;
  817.         showcaret 183 112 ;
  818.         ikey pgdn ;
  819.         nextimg ;
  820.         showcaret 182 112 ;
  821.         status ;
  822.         resumeaud ;
  823.     frame ;
  824.         config __arrowcolor darkred ;
  825.         arrow "a11" 226 175 4 ;
  826.     frame ;
  827.         pauseaud ;
  828.         status "Click \"gopher.exploratorium.edu\"." ;
  829.         imouse 1 78 168 196 15 ;
  830.         clrscr ;
  831.         showcaret 216 112 ;
  832.         nextimg ;
  833.         status "Click the \"OK\" button." ;
  834.         imouse 1 557 106 60 21 ;
  835.         status ;
  836.         nextimg ;
  837.         hidecaret ;
  838.         resumeaud ;
  839.     frame ;
  840.         pauseaud ;
  841.         hourglass 1 ;
  842.         status "Please wait..." ;
  843.         nextimg ;
  844.         sleep 200 ;
  845.         nextimg ;
  846.         call "mapgoph" ;
  847.         hourglass 0 ;
  848.         status ;
  849.         resumeaud ;
  850.     frame ;
  851.         arrow "a14" 37 133 5 ;
  852.     frame ;
  853.         remove "a14" ;
  854.     frame ;
  855.         pauseaud ;
  856.         status "Double-click \"Welcome to the Exploratorium Gopher\"." ;
  857.         imouse 4 76 121 240 20 ;
  858.         status ;
  859.         nextimg ;
  860.         resumeaud ;
  861.     frame ;
  862.         arrow "a17" 584 117 1 ;
  863.     frame ;
  864.         pauseaud ;
  865.         status "Click the \"Go to previous document\" button." ;
  866.         imouse 1 568 83 32 33 ;
  867.         status ;
  868.         clrscr ;
  869.         nextimg ;
  870.         resumeaud ;
  871.     frame ;
  872.         box "bx19" 33 136 29 191 ;
  873.     frame ;
  874.         remove "bx19" ;
  875.         arrow "a20" 223 243 4 ;
  876.     frame ;
  877.         pauseaud ;
  878.         status "Double-click \"Exploratorium Imagery\"." ;
  879.         imouse 4 72 233 152 21 ;
  880.         status ;
  881.         clrscr ;
  882.         nextimg ;
  883.         resumeaud ;
  884.     frame ;
  885.         arrow "a22" 173 131 4 ;
  886.     frame ;
  887.         pauseaud ;
  888.         status "Double-click \"What's_here\"." ;
  889.         imouse 4 73 121 100 21 ;
  890.         status ;
  891.         clrscr ;
  892.         nextimg ;
  893.         resumeaud ;
  894.     frame ;
  895.         pauseaud ;
  896.         status "Click the \"Go to previous document\" button." ;
  897.         imouse 1 568 83 32 33 ;
  898.         status ;
  899.         clrscr ;
  900.         nextimg ;
  901.         resumeaud ;
  902.     frame ;
  903.         arrow "a25" 149 319 4 ;
  904.     frame ;
  905.         pauseaud ;
  906.         status "Double-click \"Echo_tube\"." ;
  907.         imouse 4 74 310 75 21 ;
  908.         status ;
  909.         clrscr ;
  910.         nextimg ;
  911.         resumeaud ;
  912.     frame ;
  913.         config __textmode opaque ;
  914.         config __textfont 31 ;
  915.         config __textcolor black ;
  916.         config __textbkcolor gray ;
  917.         text "tx27" 542 415 36 18 "1864" ;
  918.         sleep 100 ;
  919.         remove "tx27" ;
  920.         text "tx27" 542 415 36 18 "2488" ;
  921.         sleep 100 ;
  922.         remove "tx27" ;
  923.         text "tx27" 542 415 36 18 "3214" ;
  924.     frame ;
  925.         arrow "a28" 558 408 3 ;
  926.         remove "tx27" ;
  927.         text "tx27" 542 415 36 18 "4876" ;
  928.         sleep 100 ;
  929.         remove "tx27" ;
  930.         text "tx27" 542 415 36 18 "5466" ;
  931.         sleep 100 ;
  932.         remove "tx27" ;
  933.         text "tx27" 542 415 36 18 "6064" ;
  934.     frame ;
  935.         remove "a28" ;
  936.         arrow "a29" 609 123 5 ;
  937.         remove "tx27" ;
  938.         text "tx27" 542 415 36 18 "8218" ;
  939.         sleep 100 ;
  940.         remove "tx27" ;
  941.         text "tx27" 537 415 41 18 "10064" ;
  942.         sleep 100 ;
  943.         remove "tx27" ;
  944.         text "tx27" 537 415 41 18 "12266" ;
  945.     frame ;
  946.         remove "tx27" "a29" ;
  947.         nextimg ;
  948.         showcaret 127 106 ;
  949.         disablescreenmap ;
  950.     frame ;
  951.         pauseaud ;
  952.         status "Please wait..." ;
  953.         nextimg ;
  954.         sleep 1 ;
  955.         config __textmode transparent ;
  956.         tipe "tp31" 128 105 42 16 ".jpg" ;
  957.         status "Click the \"OK\" button." ;
  958.         imouse 1 426 87 86 22 ;
  959.         status ;
  960.         nextimg ;
  961.         hidecaret ;
  962.         clrscr ;
  963.         enablescreenmap ;
  964.         resumeaud ;
  965.     frame ;
  966.         pauseaud ;
  967.         status "Please wait..." ;
  968.         config __bitmaponfx 39 ;
  969.         config __bitmapongrain 1 ;
  970.         config __bitmaponsubgrain 1 ;
  971.         config __bitmapondelay 1 ;
  972.         config __bitmapontrans 1 ;
  973.         config __bitmapontcolor green ;
  974.         bitmap "bit32" "internet.dll" "WIZ" 480 219 ;
  975.         status ;
  976.         resumeaud ;
  977.     frame ;
  978.         remove "bit32" ;
  979.         config __bitmapontrans 0 ;
  980.         config __dopalette 1 ;
  981.         bitmap "bit33" "internet.dll" "EXPLOR" 0 23 ;
  982.         disablescreenmap ;
  983.     frame ;
  984.         pauseaud ;
  985.         status "Click to continue..." ;
  986.         anykeymouse 17 ;
  987.         status ;
  988.         clrscr ;
  989.         endimg ;
  990.         endaud ;
  991.     chainseg "seg_05" ;
  992. endseg ;
  993.  
  994. segment "seg_05" 1 ;
  995.         menuitem "Gopher Speed Bar Buttons" ;
  996.         startimg "l5_seg5.pcf" 0 0 ;
  997.         call "map1" ;
  998.         call "mapgoph" ;
  999.         startaud "net_5_5.wav" "net_5_5.vcw" 0 ;
  1000.     frame ;
  1001.         arrow "a1" 583 120 1 ;
  1002.     frame ;
  1003.         remove "a1" ;
  1004.         arrow "a2" 550 120 1 ;
  1005.     frame ;
  1006.         pauseaud ;
  1007.         status "Click the \"Go to the home page\" button." ;
  1008.         imouse 1 537 83 32 32 ;
  1009.         status ;
  1010.         clrscr ;
  1011.         nextimg ;
  1012.         resumeaud ;
  1013.     frame ;
  1014.         arrow "a4" 221 244 4 ;
  1015.     frame ;
  1016.         pauseaud ;
  1017.         status "Double-click \"Exploratorium Imagery\"." ;
  1018.         imouse 4 73 233 152 24 ;
  1019.         status ;
  1020.         clrscr ;
  1021.         nextimg ;
  1022.         resumeaud ;
  1023.     frame ;
  1024.         menuitem "Using Bookmarks in Gopher" ;
  1025.         arrow "a6" 58 120 1 ;
  1026.     frame ;
  1027.         pauseaud ;
  1028.         status "Click the \"Open the book mark file\" button." ;
  1029.         imouse 1 41 84 32 31 ;
  1030.         status ;
  1031.         clrscr ;
  1032.         nextimg ;
  1033.         disablescreenmap ;
  1034.         resumeaud ;
  1035.     frame ;
  1036.         arrow "a8" 284 179 4 ;
  1037.     frame ;
  1038.         pauseaud ;
  1039.         remove "a8" ;
  1040.         status "Click the \"Add\" button." ;
  1041.         imouse 1 483 214 80 23 ;
  1042.         status ;
  1043.         nextimg ;
  1044.         resumeaud ;
  1045.     frame ;
  1046.         pauseaud ;
  1047.         status "Click the \"Done\" button." ;
  1048.         imouse 1 484 158 80 23 ;
  1049.         status ;
  1050.         nextimg ;
  1051.         enablescreenmap ;
  1052.         resumeaud ;
  1053.     frame ;
  1054.         arrow "a11" 85 120 5 ;
  1055.     frame ;
  1056.         pauseaud ;
  1057.         status "Click the \"Search word(s)...\" button." ;
  1058.         imouse 1 73 83 33 32 ;
  1059.         status ;
  1060.         clrscr ;
  1061.         nextimg ;
  1062.         showcaret 192 239 ;
  1063.         resumeaud ;
  1064.     frame ;
  1065.         pauseaud ;
  1066.         status "Please wait..." ;
  1067.         sleep 1 ;
  1068.         tipe "tp13" 192 239 28 21 "tree" ;
  1069.         status "Click the \"OK\" button." ;
  1070.         imouse 1 391 213 55 24 ;
  1071.         status ;
  1072.         clrscr ;
  1073.         hidecaret ;
  1074.         nextimg ;
  1075.         resumeaud ;
  1076.     frame ;
  1077.         arrow "a14" 177 131 4 ;
  1078.     frame ;
  1079.         remove "a14" ;
  1080.         arrow "a15" 24 120 1 ;
  1081.     frame ;
  1082.         pauseaud ;
  1083.         status "Click the \"Save the current document...\" button." ;
  1084.         imouse 1 9 83 31 32 ;
  1085.         status ;
  1086.         clrscr ;
  1087.         nextimg ;
  1088.         showcaret 117 106 ;
  1089.         disablescreenmap ;
  1090.         resumeaud ;
  1091.     frame ;
  1092.         pauseaud ;
  1093.         status "Click the \"Cancel\" button." ;
  1094.         imouse 1 426 117 86 21 ;
  1095.         status ;
  1096.         hidecaret ;
  1097.         endimg ;
  1098.         endaud ;
  1099.     chainseg "seg_06" ;
  1100. endseg ;
  1101.  
  1102. segment "seg_06" 1 ;
  1103.         menuitem "Searching for Information Using Veronica" ;
  1104.         startimg "l5_seg6.pcf" 0 0 ;
  1105.         call "map1" ;
  1106.         call "mapgoph" ;
  1107.         startaud "net_5_6.wav" "net_5_6.vcw" 0 ;
  1108.     frame ;
  1109.         textbox "tb1" 297 125 217 56 "Programs that display graphics files are called ~c01Viewers." ;
  1110.     frame ;
  1111.         textbox "tb2" 334 190 217 56 "The Internet has JPG Viewers for the taking." ;
  1112.     frame ;
  1113.         textbox "tb3" 297 255 217 56 "Let's search for a Viewer on the Internet." ;
  1114.     frame ;
  1115.         textbox "tb4" 334 320 217 56 "Gopher has a searching tool called ~c01Veronica." ;
  1116.     frame ;
  1117.         config __textcolor darkred ;
  1118.         text "tx5" 183 378 451 22 "Very Easy Rodent-Oriented Netwide Index to Computerized Archives." ;
  1119.     frame ;
  1120.         pauseaud ;
  1121.         status "Click to continue..." ;
  1122.         anykeymouse 17 ;
  1123.         status ;
  1124.         clrscr ;
  1125.         resumeaud ;
  1126.     frame ;
  1127.         textbox "tb1" 297 125 253 53 "Veronica gathers information about files and puts it in a database." ;
  1128.     frame ;
  1129.         textbox "tb2" 334 190 217 56 "Veronica currently stores data from over ~c015000 ~c00Gopher sites." ;
  1130.     frame ;
  1131.         textbox "tb3" 335 255 217 56 "Veronica searches for file ~c01titles, ~c00not file names." ;
  1132.     frame ;
  1133.         pauseaud ;
  1134.         status "Click to continue..." ;
  1135.         anykeymouse 17 ;
  1136.         status ;
  1137.         clrscr ;
  1138.         resumeaud ;
  1139.     frame ;
  1140.         pauseaud ;
  1141.         status "Click the \"Open the book mark file\" button." ;
  1142.         imouse 1 42 83 31 32 ;
  1143.         status ;
  1144.         nextimg ;
  1145.         resumeaud ;
  1146.     frame ;
  1147.         arrow "a12" 282 180 4 ;
  1148.     frame ;
  1149.         pauseaud ;
  1150.         status "Double-click the first book mark." ;
  1151.         imouse 4 66 174 400 13 ;
  1152.         status "Please wait..." ;
  1153.         clrscr ;
  1154.         hourglass 1 ;
  1155.         sleep 200 ;
  1156.         hourglass 0 ;
  1157.         status ;
  1158.         nextimg ;
  1159.         resumeaud ;
  1160.     frame ;
  1161.         arrow "a14" 345 205 4 ;
  1162.     frame ;
  1163.         pauseaud ;
  1164.         status "Double-click \"Simplified veronica...\"." ;
  1165.         imouse 4 71 194 274 23 ;
  1166.         status ;
  1167.         clrscr ;
  1168.         nextimg ;
  1169.         showcaret 207 280 ;
  1170.         resumeaud ;
  1171.     frame ;
  1172.         pauseaud ;
  1173.         status "Please wait..." ;
  1174.         config __textcolor black ;
  1175.         sleep 1 ;
  1176.         tipe "tp16" 208 280 125 17 "jpeg viewer" ;
  1177.         status ;
  1178.         resumeaud ;
  1179.     frame ;
  1180.         pauseaud ;
  1181.         status "Click the \"OK\" button." ;
  1182.         imouse 1 367 118 68 22 ;
  1183.         status ;
  1184.         hidecaret ;
  1185.         clrscr ;
  1186.         nextimg ;
  1187.         resumeaud ;
  1188.     frame ;
  1189.         pauseaud ;
  1190.         status "Please wait..." ;
  1191.         hourglass 1 ;
  1192.         sleep 100 ;
  1193.         nextimg ;
  1194.         sleep 100 ;
  1195.         nextimg ;
  1196.         hourglass 0 ;
  1197.         status ;
  1198.         resumeaud ;
  1199.     frame ;
  1200.         textbox "tb19" 364 131 250 71 "Veronica has built a file containing links to the Gopher site entries that match the search words." ;
  1201.     frame ;
  1202.         textbox "tb20" 365 216 221 54 "To download one of these files, just double-click it." ;
  1203.     frame ;
  1204.         pauseaud ;
  1205.         status "Double-click the smaller Control-menu box." ;
  1206.         box "bx17" 0 18 18 20 ;
  1207.         arrow "a17" 22 26 4 ;
  1208.         imouse 4 0 18 18 20 ;
  1209.         status ;
  1210.         clrscr ;
  1211.         endimg ;
  1212.         endaud ;
  1213.     chainseg "review" ;
  1214. endseg ;
  1215.  
  1216. segment "review" 1 ;
  1217.         menuitem "Lesson Review" ;
  1218.         startimg "tr.pcf" 0 0 ;
  1219.         config __textcolor darkcyan ;
  1220.         text "tx0a" 240 39 390 23 "~f05Lesson 5:  Finding and Getting Information" ;
  1221.         config __textcolor darkred ;
  1222.         text "tx0" 337 69 120 33 "~f27Review" ;
  1223.         config __textcolor medblue ;
  1224.         text "tx1" 244 139 279 33 "~f26In this lesson you learned:" ;
  1225.         startbullet 219 180 379 200 ;
  1226.         bullet "b2" 1 0 "How to use FTP to retrieve files" ;
  1227.         bullet "b3" 1 6 "How to find files using Archie" ;
  1228.         bullet "b4" 1 12 "How to explore Gopher sites" ;
  1229.         bullet "b5" 1 18 "How to find topics in Gopher sites using Veronica" ;
  1230.         startaud "net_rev.wav" "net_rev.vcw" 0 ;
  1231.     frame ;
  1232.         pauseaud ;
  1233.         status "Click to begin the Review." ;
  1234.         anykeymouse 17 ;
  1235.         clrscr ;
  1236.         endimg ;
  1237.         startimg "l5_rev.pcf" 0 0 ;
  1238.         showcaret 73 112 ;
  1239.         textbox "tb2" 183 144 274 71 "You can use ~c01FTP ~c00(File Transfer Protocol) to transfer files among computers attached to the Internet." ;
  1240.         textbox "tb3" 137 230 367 105 "To use FTP, you: ~n~n~c011.  ~c00Click the FTP button. ~n~c012.  ~c00Enter the network address of an FTP site. ~n~c013.  ~c00Enter a login (usually \"anonymous\") and password." ;
  1241.         call "map1" ;
  1242.         status "Click to continue..." ;
  1243.         anykeymouse 17 ;
  1244.         clrscr ;
  1245.         hidecaret ;
  1246.         nextimg ;
  1247.         arrow "a2" 344 139 4 ;
  1248.         textbox "tb2" 210 170 221 69 "After you access the FTP site, you enter the directory path that contains the files you want." ;
  1249.         anykeymouse 17 ;
  1250.         clrscr ;
  1251.         nextimg ;
  1252.         textbox "tb3" 168 195 304 55 "Once you access the FTP site and directory, you can view, download, and upload files." ;
  1253.         config __textcolor darkred ;
  1254.         text "tx18" 468 163 98 26 "Directories" ;
  1255.         text "tx20" 468 264 93 29 "Files" ;
  1256.         call "mapftp" ;
  1257.         anykeymouse 17 ;
  1258.         clrscr ;
  1259.         nextimg ;
  1260.         config __caretwidth 2 ;
  1261.         showcaret 276 383 ;
  1262.         arrow "a4" 353 96 4 ;
  1263.         text "tx4" 405 90 72 19 "Web page" ;
  1264.         arrow "a4a" 411 390 4 ;
  1265.         textbox "tb4" 173 231 169 86 "Archie enables you to search for files on the Internet, based on their file names." ;
  1266.         textbox "tb4a" 378 231 169 86 "One way to access Archie is through the World Wide Web." ;
  1267.         call "map1" ;
  1268.         call "maparch" ;
  1269.         anykeymouse 17 ;
  1270.         clrscr ;
  1271.         hidecaret ;
  1272.         nextimg ;
  1273.         textbox "tb5" 298 182 312 69 "After you enter a search word, Archie displays a list of file names containing your search word, along with the Host site and directory." ;
  1274.         textbox "tb5a" 298 256 312 37 "You can then download a file using FTP." ;
  1275.         anykeymouse 17 ;
  1276.         clrscr ;
  1277.         nextimg ;
  1278.         config __caretwidth 1 ;
  1279.         showcaret 217 112 ;
  1280.         textbox "tb6" 194 147 252 53 "You can also locate various files by visiting Gopher sites on the Internet." ;
  1281.         textbox "tb6a" 194 216 252 53 "First, you enter the network address of the Gopher site." ;
  1282.         call "map1" ;
  1283.         anykeymouse 17 ;
  1284.         clrscr ;
  1285.         hidecaret ;
  1286.         nextimg ;
  1287.         textbox "tb7" 346 147 245 71 "Then you can browse through the Gopher site's directories and files by double-clicking them." ;
  1288.         call "mapgoph" ;
  1289.         anykeymouse 17 ;
  1290.         clrscr ;
  1291.         nextimg ;
  1292.         textbox "tb8" 167 218 227 56 "Bookmarks enable you to jump directly to a Gopher site." ;
  1293.         disablescreenmap ;
  1294.         anykeymouse 17 ;
  1295.         clrscr ;
  1296.         nextimg ;
  1297.         arrow "a9" 238 98 4 ;
  1298.         text "tx9" 290 89 179 19 "veronica's network address" ;
  1299.         textbox "tb9" 408 133 211 71 "~c01Veronica ~c00lets you search for files in Gopher space based on topic titles." ;
  1300.         textbox "tb9a" 408 213 211 71 "Once you access veronica, you select a search option and enter your search word(s)." ;
  1301.         textbox "tb9b" 408 293 211 71 "Veronica then displays a list of Gopher site entries matching your search word(s)." ;
  1302.         enablescreenmap ;
  1303.         anykeymouse 17 ;
  1304.         status ;
  1305.         clrscr ;
  1306.         hidecaret ;
  1307.         endimg ;
  1308.         endaud ;
  1309.     chainseg "seg_end" ;
  1310. endseg ;
  1311.  
  1312. segment "seg_end" 1 ;
  1313.         menuitem "Lesson Conclusion" ;
  1314.         startimg "tr.pcf" 0 0 ;
  1315.         config __textcolor darkcyan ;
  1316.         text "tx0a" 240 39 390 23 "~f05Lesson 5:  Finding and Getting Information" ;
  1317.         config __textcolor darkred ;
  1318.         text "tx0" 340 65 150 31 "~f27Conclusion" ;
  1319.         startbullet 219 120 365 167 ;
  1320.         bullet "b0" 1 0 "If you are unsure about any of the material covered, you should take some or all of the lesson again." ;
  1321.         bullet "b1" 1 11 "In Lesson 6 you'll learn how to use the World Wide Web." ;
  1322.         config __bitmaponfx 15 ;
  1323.         config __bitmapongrain 1000 ;
  1324.         config __bitmaponsubgrain 1000 ;
  1325.         config __bitmapondelay 1 ;
  1326.         config __bitmapontrans 1 ;
  1327.         config __bitmapontcolor green ;
  1328.         bitmap "bit0" "internet.dll" "WIZ" 321 245 ;
  1329.         startavi "l5e.avi" "jnk1.vcw" 15 78 ;
  1330.         status "Click to return to the Course Menu" ;
  1331.         anykeymouse 17 ;
  1332.         clrscr ;
  1333.         endimg ;
  1334. endseg ;
  1335.  
  1336.